home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Gamer Resource Kit / Hardcore Gamer Resource Kit - Disc 2.iso / Pc / A_C / AOE_DOS.ZIP / FIXJOY.BAT < prev    next >
DOS Batch File  |  1993-12-20  |  955b  |  32 lines

  1. @echo off
  2. echo.
  3. echo    This batch file can be used to fix a problem that occurs on 
  4. echo    certain machines, notably some Acer computers.  The problem is
  5. echo    associated with some startup code that looks for the presence of 
  6. echo    a Notebook Gameport Adaptor (tm).  The effects of this batch file
  7. echo    can be undone by running it with a U option, i.e.  "FIXJOY U".
  8. echo    Even if you don't have any joystick problems, running FIXJOY.BAT 
  9. echo    is safe to do UNLESS you have a Notebook Gameport Adaptor installed, 
  10. echo    in which case it's presence would then not be detected by the 
  11. echo    game.
  12. echo.
  13.  
  14. IF "%1"=="U" goto UNDO
  15. IF "%1"=="u" goto UNDO
  16.  
  17. echo    Installing joystick fix.  
  18. rem             Use AOE.COM that installs joystick fix.
  19. copy aoe_acer.com aoe.com
  20. goto DONE
  21.  
  22.  
  23. :UNDO
  24. echo    De-installing joystick fix.
  25. rem                     Use original AOE.COM.
  26. copy aoe_orig.com aoe.com
  27.  
  28. :DONE
  29. echo.
  30.  
  31.  
  32.